home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / amos / amos_list_930601.lha / amos.list.vol5 < prev   
Text File  |  1993-06-01  |  38KB  |  1,168 lines

  1. MSG-----------
  2. Date: 25 May 93 09:22:55+0200
  3. From: Jean-Francois Dreyfuss <dreyfusj@issy.cnet.fr>
  4. To: amos-list@access.digex.net
  5. Subject: Re: Printers
  6.  
  7. ----- Begin Included Message -----
  8.  
  9. Does anyone know of a simple way to detect printer problems from within AMOS
  10. the Creator?  Are there any bits I can test or Peek or something?
  11.  
  12. ----- End Included Message -----
  13.  
  14. I think I had some success in the past making Amos using PRT: instead of
  15. PAR: as it is the default setting. But I realize it's only a partial answer.
  16. You must probably use the internal libraries to get some info within the
  17. Amos Program...
  18.  
  19.  
  20.  
  21. MSG-----------
  22. Date: Mon, 24 May 93 22:06:54 MDT
  23. From: ncrcom!access.digex.net!mcox@ncr-mpd.FtCollinsCO.NCR.com
  24. Apparently-To: kentd@strauss
  25.  
  26. Does anyone know of a simple way to detect printer problems from within AMOS
  27. the Creator?  Are there any bits I can test or Peek or something?
  28.  
  29. I ask because a friend has tried printing within a program but if the
  30. printer has a problem, AMOS just seems to lock up until the problem is fixed.
  31. It would be nice to check for problems, then display a requester or something
  32. to notify the user.
  33.  
  34. Mike
  35. -- 
  36. Michael Cox                             Work:   mcox@access.digex.com
  37. Amiga Conquers, AMOS Rules!             Play:   aj639@cleveland.freenet.edu
  38. This space intentionally left blank     Fido:   1:109/456.0
  39.         The text above is my own and all that other disclaimer junk
  40.  
  41. MSG-----------
  42. Date: Tue, 25 May 93 09:59:25 +0000
  43.  
  44. I ment to hook up two amigos with a cable.
  45. My cable is ok, it works fine with Lotus & Populous II
  46.  
  47. That about those glases, maybe it vould be used to make "real" 3d-effekts?
  48.  
  49. I've got the manual to Creator 1.34, but I've got AFs 1.36, and it doesnt 
  50. say anything about Amos Lock, Amos to Back/Front, a bug in the manual?
  51.  
  52. Thanks for your help guys!(and to those who has given me their adresses, 
  53. there aren't so many Amos coders in northern Norway:-(
  54.  
  55. Arnljot Arntsen        alias        WGA
  56. Larshallensvei 27
  57. 9180  SKJERVXY
  58. NORWAY
  59.  
  60. Member of:    PAN PRODUCTIONS
  61. Phone:        +47 83 60685 (after 1600, +1h GMT)
  62. Email:        hkg-aa@nvs.winix.tih.no
  63. ----------------------------------------------------------------------------
  64. Look out for programmers that carry screwdrivers!
  65. In C, every thing is legal until runtime...
  66. ----------------------------------------------------------------------------
  67.  
  68. MSG-----------
  69. Date: Wed, 26 May 93 09:45:10 BST
  70. From: mas@inf.rl.ac.uk
  71. To: amos-list@access.digex.net
  72. Subject: Using four player adator in AMOS.
  73.  
  74.  
  75. Here's that source for reading extra joysticks plugged into the parallel
  76. port with one of those adaptors...
  77.  
  78.  
  79. ' Joystick functions JLEFT(), JRIGHT(), etc, that read joysticks plugged 
  80. ' into a four player adaptor.    
  81. '
  82. '
  83. Def Fn _JUP(Y)    = Not Btst(4*Y,  $BFE101)
  84. Def Fn _JDOWN(Y)  = Not Btst(1+4*Y,$BFE101)
  85. Def Fn _JLEFT(Y)  = Not Btst(2+4*Y,$BFE101)
  86. Def Fn _JRIGHT(Y) = Not Btst(3+4*Y,$BFE101)
  87. Def Fn _FIRE(Y)   = Not Btst(2-2*Y,$BFD000)
  88. '
  89. '
  90. Cls : Curs Off 
  91. '
  92. Do 
  93.    Home 
  94. '
  95.    Print "JOY1 ";
  96.    Print Fn _JUP(0); Fn _JDOWN(0); Fn _JLEFT(0); Fn _JRIGHT(0); Fn _FIRE(0)
  97.    '
  98.    Print "JOY2 ";
  99.    Print Fn _JUP(1); Fn _JDOWN(1); Fn _JLEFT(1); Fn _JRIGHT(1); Fn _FIRE(1)
  100. '  
  101. '
  102. ' This simulates the JOY() function if you prefer that instead.  
  103. '
  104.    _JOY0 = ( Peek( $BFE101) and 15) xor 15-16* Not Btst( 2, $BFD000)
  105.    _JOY1 = ( (Peek( $BFE101) and 240)/16) xor 15-16* Not Btst( 0, $BFD000)
  106. '
  107.    Print 
  108.    Print "State of JOY1: ";Bin$( _JOY0, 5)
  109.    Print "State of JOY2: ";Bin$( _JOY1, 5)
  110. '
  111. Loop 
  112.  
  113.  
  114. You have to be a bit careful with the fire button values, because they actually
  115. "latch" to 1 when you press the fire button. In other words, if you wanna make
  116. sure that the button is being pressed right NOW, read the value twice and
  117. take the second value as the actual state of the fire button.
  118.  
  119. I dont know of many games that actually use the adaptors nowadays, but quite a
  120. lot of people seem to have one of them laying around some place.
  121.  
  122. Martin.
  123.  
  124.  
  125. PS - This is only a tiny bit of source, so it didnt seem worth uploading it as
  126.      a uuencoded program in true AMOS format. If you really do want to save
  127.      yourself the typing, there is always the "MERGE ASCII" option on one of
  128.      the AMOS menus :-)
  129.  
  130. MSG-----------
  131. Date: Wed, 26 May 93 13:57:45 +0000
  132.  
  133. Yoppa!
  134.  
  135. I will not Email DIS to you guys, only to the ones who Email me amd ask for 
  136. it.
  137. (Ok?)
  138.  
  139. It has been a while since I last used the turbo extension, so I desided to 
  140. change the setup so that it loaded turbo.lib
  141.  
  142. SO:
  143.  
  144. I changed ext. no. 8 to:
  145.  
  146. :AMOS_System/Turbo.Lib
  147.  
  148. and my Turbo.lib file is in the AMOS_System folder which is in the root of 
  149. dh1: where my Amos1.3 program file is.
  150.  
  151. BUT!
  152.  
  153. When i booted AMOS1.3 it exited at once without telling me what the he** 
  154. what was wrong! I booted my compiled Config1_3 program and deleted the 
  155. Turbo.lib extension from the list, and every thing was fine again.
  156.  
  157. WHAT IS WRONG, have anybody else had a similar problem? How did you fix it?
  158.  
  159. Some fortunes...
  160. ----------------------------------------------------------------------------
  161. "All the parts falling off this computer are of the very finest British
  162. manufacture"
  163. ----------------------------------------------------------------------------
  164. progasm: the feeling you get when your code works the first time
  165. ----------------------------------------------------------------------------
  166. / is the root of all UNIX
  167. ----------------------------------------------------------------------------
  168. Twas the night before Beta
  169. And all through the house
  170. Not a creature was stirring
  171. Not even my mouse
  172. The breakpoints were set
  173. Through the program with care
  174. For fear that the Guru
  175. Soon would be there.
  176. ----------------------------------------------------------------------------
  177.  
  178. MSG-----------
  179. Date: Wed, 26 May 93 14:25:24 +0000
  180.  
  181. Is it possible to read tool types and parameters in Amos?
  182.  
  183. if i write this in the Cli: 
  184.  
  185. Myprogram.AMOS Picture.IFF
  186.  
  187. How do i read the parametere and load it into a string?
  188.  
  189. And how do i read Tool Types?
  190. (I need it to PAN PAINT)
  191.  
  192. MSG-----------
  193. Date: Wed, 26 May 1993 10:18:18 -0400 (EDT)
  194. In-Reply-To: <9305261425.AA18404@nvs.winix.tih.no> from "Arnljot Arntsen, HKG" at May 26, 93 02:25:24 pm
  195. Mime-Version: 1.0
  196. Content-Type: text/plain; charset=US-ASCII
  197. Content-Transfer-Encoding: 7bit
  198. Content-Length: 576       
  199.  
  200. >Is it possible to read tool types and parameters in Amos?
  201. >if i write this in the Cli: 
  202. >Myprogram.AMOS Picture.IFF
  203. >How do i read the parametere and load it into a string?
  204. I do not know about ToolTypes, but with the Compiler extension you have the
  205. COMMAND LINE$ which holds the parameters.
  206.  
  207. Mike
  208. -- 
  209. Michael Cox                             Work:   mcox@access.digex.com
  210. Amiga Conquers, AMOS Rules!             Play:   aj639@cleveland.freenet.edu
  211. This space intentionally left blank     Fido:   1:109/456.0
  212.         The text above is my own and all that other disclaimer junk
  213.  
  214. MSG-----------
  215. Date: Wed, 26 May 93 17:18:58 BST
  216. From: mas@inf.rl.ac.uk
  217. To: amos-list@access.digex.net
  218. Subject: re: Screen Base
  219.  
  220.  
  221. If all you want to know are the addresses of the bit planes, there is already
  222. a function to return them. From the original AMOS manual, page 135...
  223.  
  224. address = PHYBASE(plane)
  225.  
  226. PHYBASE returns the address in memory of bit-plane number "plane" for the 
  227. current screen (or zero if it doesn't exist)
  228.  
  229.  
  230. Hope that helps,
  231.  
  232. Martin.
  233.  
  234. MSG-----------
  235. Date: Wed, 26 May 93 20:07:42 PDT
  236. Mailer: Elm [revision: 70.85]
  237.  
  238.  
  239.  
  240.  
  241.  
  242. Howdy, everyone,
  243.  
  244. I'm a new AMOS-listee, so I'm following the directions and mailing
  245. this introduction to everyone.  Excuse me if I'm taking up your valu-
  246. abe time.
  247.  
  248. I use AMOS for many things.  I've written planetary simulators, hokey
  249. ballistics-based games, screen blankers, senseless hardware hacks, and
  250. lots of other things that I can't think of right now.  At the moment,
  251. a fellow student and I are developing a program to dynamically and inter-
  252. actively show the number of students who travel along the bikepaths that
  253. criss-cross our campus for the Office of Development and Planning.
  254. Yeah, it doesn't sound all that exciting, but I'm learning how to use the
  255. new Resource and Dialog commands which make life a lot easier.  Also,
  256. I'm hoping that if I make it flashy enough (you should see the intro), 
  257. the administrators of this place will say, "WOW! What computer did you 
  258. do that on?"
  259. To which I shall respond, "The Commodore Amiga."
  260. "Oh, but we use Macs.  Can you do that on a Mac?"
  261. "NO!"
  262. It's high time the education system got a really good look at what our
  263. fine machines can do, and AMOS is the perfect way to do that.  A friend
  264. of mine (Mac-owner) saw what I can do with AMOS, and now he's borrowed
  265.  
  266. someone else's Amiga and is trying to learn AMOS.  He's doing pretty well,
  267. and he's never really programmed before(Basic on the AppleII doesn't count
  268. as programming, does it?).
  269. In short, I love AMOS, and eagerly await the compiler and 3D modules for
  270. AMOS_Pro.
  271. Thanks for reading my blabber.
  272.  
  273. Richard Helvey
  274. urich@mcl.mcl.ucsb.edu
  275.  
  276.  
  277.  
  278. MSG-----------
  279. Date: Thu, 27 May 93 11:47:46 BST
  280. From: mas@inf.rl.ac.uk
  281. To: amos-list@access.digex.net
  282. Subject: Re: problem updating Amos to 1.36
  283.  
  284.  
  285. > I've tried it from the CLI without loading workbench,
  286. > and also without the external drive connected. Help!
  287.  
  288. For what it's worth, you are probably better off running it from Workbench.
  289. AMOS is able to close down the workbench screen, saving itself 40 or 50K. 
  290.  
  291. However, it won't do this if you start it directly from a CLI. I think it might
  292. do if you are able to start the updater as a background task and close the CLI
  293. down BEFORE the updater starts up. You might gain a little bit more memory
  294. that way, because even though the actual Workbench screen gets shut down I
  295. guess the icons and things are still lingering around using up a bit.
  296.  
  297. The likely reason for running out of memory is that the files that come on
  298. the updater disk are in a compressed format. It loads a few of them at once as
  299. a memory bank, decrunches them and saves the new files to your Amos disk.
  300.  
  301. Looks like you'll just have to fork out for an extra 512K expansion :-(
  302.  
  303.  
  304. Martin.
  305.  
  306. PS - Don't Commodore now say that 1 Meg is now supposed to be the "base"
  307.      level Amiga (but then, what do *they* now eh...) ?
  308.  
  309.  
  310.  
  311. MSG-----------
  312. Date: 26 May 93 19:56:00 EST
  313. From: Andrew Church <95ACHURCH@vax.mbhs.edu>
  314. Subject: Re: Screen Base
  315. To: amos-list <amos-list@access.digex.net>
  316.  
  317.   In case anyone's interested, here's all I've been able to find out
  318. about the Screen Base structure:
  319.  
  320. Ofs | Item
  321. ----+-----------------------------------------------------
  322. $00 | Bitplane 0 (active buffer of double-buffered screen)
  323. $04 | Bitplane 1
  324. $08 | Bitplane 2
  325. $0C | Bitplane 3
  326. $10 | Bitplane 4
  327. $14 | Bitplane 5
  328. $18 | Bitplane 0 (first buffer)
  329. $1C | Bitplane 1
  330. $20 | Bitplane 2
  331. $24 | Bitplane 3
  332. $28 | Bitplane 4
  333. $2C | Bitplane 5
  334. $30 | Bitplane 0 (second buffer)
  335. $34 | Bitplane 1
  336. $38 | Bitplane 2
  337. $3C | Bitplane 3
  338. $40 | Bitplane 4
  339. $44 | Bitplane 5
  340. $48 | Screen mode (value of BPLCON0 custom chip register)
  341. $4A | ???
  342. $4C | Width
  343. $4E | Height
  344. $50 | Depth
  345. $52 | X hardware display position
  346. $54 | Y hardware display position + $1000
  347.     |   (actual position = Deek(Screen Base+$54)-$1000
  348. $56 | Width of displayed area of screen in low-res pixels
  349.     |   (2 hi-res pixels for each low-res pixel)
  350. $58 | Height of displayed area of screen
  351. $5A | X screen offset
  352. $5C | Y screen offset
  353. $5E | ???
  354. $60 | ???
  355. $62 | ???
  356. $64 | Number of colors in screen (2^Depth)
  357. $66 | Color 0
  358. $68 | Color 1
  359.  :  |    :
  360.  :  |    :
  361. $A4 | Color 31
  362.  
  363.   --Andy Church
  364.  
  365.  
  366. MSG-----------
  367. Date: Thu, 27 May 1993 00:42:33 -0400 (EDT)
  368. From: sfmcnally@bix.com
  369. Subject: RE: Tool types & parameters
  370. In-Reply-To: <9305261425.AA18404@nvs.winix.tih.no>
  371. To: hkg-aa@nvs.winix.tih.no
  372. Cc: amos-list@access.digex.net
  373. Content-Transfer-Encoding: 7BIT
  374.  
  375. You can read the command line with a comand that comes with the Compiler.
  376. I 'm not sure exactley what the command is right now, but I've read 'bout it.
  377.  
  378. Seumas
  379.  
  380. MSG-----------
  381. Date: 26 May 93 19:58:00 EST
  382. From: Andrew Church <95ACHURCH@vax.mbhs.edu>
  383. Subject: Turbo.lib problem
  384. To: amos-list <amos-list@access.digex.net>
  385.  
  386.   AMOS requires that the extension return the same value in data register
  387. zero as its extension number.  The problem most likely is that it is not
  388. returning 8 in D0, so either change the code or find out what extension
  389. it's supposed to be and put it there.
  390.  
  391.   --Andy Church
  392.  
  393.  
  394. MSG-----------
  395. Date: Fri, 28 May 93 11:09:15 +0000
  396.  
  397. Hello THKOAC fellows!(=The Holy Klan Of Amos Coders:-)
  398.  
  399. To you who have asked for DIS, you'll get it on Tuesday, I got the day of on 
  400. Moday and therefor no access to a modem.
  401.  
  402. I'll fix a bug in the weekend:The uncompiled is too slow, and the compiled 
  403. is too fast!
  404.  
  405. Arnljot, Norway
  406.  
  407. MSG-----------
  408. Date: Fri, 28 May 1993 02:58:48 -0700
  409. To: amos-list@access.digex.net
  410. From: Chris Doolan <u912084@postoffice.utas.edu.au>
  411. Subject: Looking for an AMOS routine to use translator library.
  412.  
  413. Hello all,
  414.         What I'm looking for is a fiendish programer to write me an
  415. extension or give me the hook codes and implimentaion instructions to
  416. access the translate library. What I'm hopeing (sp?) to achieve is the mesh
  417. of sampled phonemes and text translation routines.
  418.  
  419. Hope somebody can help me.
  420.  
  421. |\ /|
  422. |o o| Chris Doolan (Email: u912084@postoffice.utas.edu.au)
  423. .=+=. 
  424.  
  425.  
  426. MSG-----------
  427. Date: Sat, 29 May 1993 12:59:20 +0700 (MST)
  428. From: Mike Sikorsky <sikorsky@ee.ualberta.ca>
  429. Subject: Re: How about an ftp "manager"
  430. To: amos-list@access.digex.net, Kent.Dalton@FtCollinsCO.NCR.com
  431. In-Reply-To: <9305282056.AA04242@strauss.FtCollinsCO.NCR.com>
  432. Mime-Version: 1.0
  433. Content-Type: TEXT/PLAIN; charset=US-ASCII
  434.  
  435.  
  436.     I think this is a great idea..... good thinking.... I hope that
  437. we can do this..
  438.  
  439. Mike Sikorsky <sikorsky@bode.ee.ualberta.ca>
  440.  
  441.  
  442.  
  443.  
  444. MSG-----------
  445. Date: Sun, 30 May 1993 01:45:07 -0600 (MDT)
  446. Cc: amos-list@access.digex.net
  447. In-Reply-To: <9305282056.AA04242@strauss.FtCollinsCO.NCR.com> from "Kent Dalton" at May 28, 93 02:56:52 pm
  448. Mime-Version: 1.0
  449. Content-Type: text/plain; charset=US-ASCII
  450. Content-Transfer-Encoding: 7bit
  451. Content-Length: 1753      
  452.  
  453. > It seems that lately we've had a number of people offering code or
  454. > programs to others via e-mail. It seems to me like it'd be a good
  455. > idea to also set up an "ftp manager" of sorts: A person who you
  456. > e-mail your AMOS code and programs to and then he puts them up for
  457. > ftp on aminet in dev/amos and tells the mailing list they are
  458. > available and for people without ftp they can e-mail soandso for a
  459. > copy. This is much more practical than mailing a whole bunch of individ
  460. als
  461. > privately and has the advantage of permanently archiving the stuff
  462. > so that people who join the list too late to see e-mail offers
  463. > like those we've had lately can know what's available too.
  464. > The "manager" could maybe even post an index of what's available for ft
  465.  
  466. > every month. And maybe even archive all the posts to the mailing list
  467. > and put them up for ftp too.
  468. > (Obviously, those of us with direct ftp access can upload
  469. > code ourselves and then let the manager know to update his index).
  470. > Let me know what you all think of the idea!
  471. > I'd be willing to take on the job!
  472. > --
  473. > /**********************************************************************
  474. ***/
  475. > /* Kent Dalton                   * EMail: Kent.Dalton@FtCollinsCO.NCR.C
  476. M */
  477. > /* NCR Microelectronics          * Phone: (303) 223-5100 X-319         
  478.   */  
  479. > /* 2001 Danfield Ct. MS470A      *   FAX: (303) 226-9556               
  480.   */
  481. > /* Fort Collins, Colorado 80525  *                                     
  482.   */
  483. > /**********************************************************************
  484. ***/
  485. > Hmmm..  a CRIPPLED ACCOUNTANT with a FALAFEL sandwich is HIT
  486. >  by a TROLLEY-CAR..
  487.  
  488.         Sounds like a Great Idea to me.   Go for it!
  489.  
  490.                  pjsmith@nyx.cs.du.edu
  491.  
  492.  
  493. MSG-----------
  494. Date: Fri, 28 May 93 14:56:52 MDT
  495. Reply-To: amos-list@access.digex.net
  496. Reply-To: Kent.Dalton@FtCollinsCO.NCR.com
  497. Return-Path: <Kent.Dalton@FtCollinsCO.NCR.com>
  498. Organization: NCR Microelectronics, Ft. Collins, CO
  499.  
  500.  
  501. It seems that lately we've had a number of people offering code or
  502. programs to others via e-mail. It seems to me like it'd be a good
  503. idea to also set up an "ftp manager" of sorts: A person who you
  504. e-mail your AMOS code and programs to and then he puts them up for
  505. ftp on aminet in dev/amos and tells the mailing list they are
  506. available and for people without ftp they can e-mail soandso for a
  507. copy. This is much more practical than mailing a whole bunch of individuals
  508. privately and has the advantage of permanently archiving the stuff
  509. so that people who join the list too late to see e-mail offers
  510. like those we've had lately can know what's available too.
  511.  
  512. The "manager" could maybe even post an index of what's available for ftp
  513. every month. And maybe even archive all the posts to the mailing list
  514. and put them up for ftp too.
  515.  
  516. (Obviously, those of us with direct ftp access can upload
  517. code ourselves and then let the manager know to update his index).
  518.  
  519. Let me know what you all think of the idea!
  520. I'd be willing to take on the job!
  521.  
  522. --
  523. /**************************************************************************/
  524. /* Kent Dalton                   * EMail: Kent.Dalton@FtCollinsCO.NCR.COM */
  525. /* NCR Microelectronics          * Phone: (303) 223-5100 X-319            */  
  526. /* 2001 Danfield Ct. MS470A      *   FAX: (303) 226-9556                  */
  527. /* Fort Collins, Colorado 80525  *                                        */
  528. /**************************************************************************/
  529. Hmmm..  a CRIPPLED ACCOUNTANT with a FALAFEL sandwich is HIT
  530.  by a TROLLEY-CAR..
  531.  
  532.  
  533. MSG-----------
  534. Date: Sat, 29 May 93 04:29:06 -0500
  535. From: Laura A Sjoquist-1 <sjoq0002@student.tc.umn.edu>
  536. To: amos-list@access.digex.net
  537. Subject: Re: How about an ftp "manager"
  538.  
  539. Here here... not a bad idea. 
  540.  
  541. MSG-----------
  542. Date: Sat, 29 May 93 14:57:24 PDT
  543. In-Reply-To: <9305282056.AA04242@strauss.FtCollinsCO.NCR.com>; from "Kent Dalton" at May 28, 93 2:56 pm
  544. Mailer: Elm [revision: 70.85]
  545.  
  546. Hey,
  547.  
  548. This is a great idea. I am totally new to the AMOS world of programming.
  549.  
  550.     I certainly welcome any kind of programs to run on.I will be able to         learn how to 
  551. program. I am not a programmer yet, but I am determined to become one.
  552.  
  553. I think the support system here will be a valuable resource for people 
  554. like me who cannot rely on programming books alone.
  555.  
  556. In conclusion, could you send me any immediate simple programs that I can run on
  557. my Amiga. Anything will be great. You guys know more about each successive
  558. levels in programming. Please send me a batch of level one programs.  
  559.  
  560. Thank you everyone for reading this. I look forward receiving your suggested 
  561. programs to start with.
  562.  
  563.  
  564.  
  565. ++++++++++++++++++++++++++++++++++++++++++++
  566.                                            +
  567. Mike Lieberman                             +
  568. University of California                   +
  569. Santa Barbara, CA 93107                    +
  570.                                            +
  571. e-mail:  umike@mcl.mcl.ucsb.edu            +
  572.                                            +  
  573. ++++++++++++++++++++++++++++++++++++++++++++
  574.  
  575. MSG-----------
  576. Date: Sat, 29 May 93 8:46:10 PDT
  577. In-Reply-To: <9305282056.AA04242@strauss.FtCollinsCO.NCR.com>; from "Kent Dalton" at May 28, 93 2:56 pm
  578. Mailer: Elm [revision: 70.85]
  579.  
  580.  
  581. As a new AMOS listee myself, I think that's a wonderful idea.
  582.  Richard Alan Helvey
  583.  urich@mcl.mcl.ucsb.edu
  584.  
  585.  
  586. MSG-----------
  587. Date: Sat, 29 May 1993 06:37:39 -0400 (EDT)
  588. Mime-Version: 1.0
  589. Content-Type: text/plain; charset=US-ASCII
  590. Content-Transfer-Encoding: 7bit
  591. Content-Length: 761       
  592.  
  593. That sounds like a bravo idea to me!  Does anyone besides Kent want to be the
  594. administer of the archive list?  If not then congrats, Kent you are the
  595. administer!  I am willing to be your backup if you can no longer do the
  596. managing for whatever reason.
  597.  
  598. I uploaded turbo175.lha to dev/amos on the Aminet sites.  This is the TURBO
  599. extension v1.75.  All the regular commands plus you now have commands that
  600. will manipulate single bitplanes!  Many demos and examples are included.
  601.  
  602. Mike
  603. -- 
  604. Michael Cox                             Work:   mcox@access.digex.com
  605. Amiga Conquers, AMOS Rules!             Play:   aj639@cleveland.freenet.edu
  606. This space intentionally left blank     Fido:   1:109/456.0
  607.         The text above is my own and all that other disclaimer junk
  608.  
  609. MSG-----------
  610. Date: Sat, 29 May 1993 09:12:23 -0500 (CDT)
  611. Content-Type: text
  612. Content-Length: 300       
  613.  
  614. Sounds like a GREAT idea!
  615.  
  616. Quick question concenring the AMOS club: is there an American contact for
  617. this?  My packaging (1.2) doesn't list one.
  618.  
  619. Another quick question: I was reading the updater docs for 1.34 and they
  620. implied that the AMOS Compiler is PD as of 1.34. Is this true? Mike?
  621. Anyone? :)
  622.  
  623.  
  624. MSG-----------
  625. Date: Mon, 31 May 93 18:21:01 +0300
  626. From: Dr Unix <gasmisam@her.tei.gr>
  627. Organization: TEI-Heraclion, Crete, Greece
  628. To: amos-list@access.digex.net
  629. Subject: 3d Routines
  630.  
  631. To all people asked me to send the 3d routines
  632.  
  633. no problem , will do it as soon as possible
  634.  
  635. but , you must wait a week , let me the time to get them 
  636.  
  637. from France , to comment them and sending them .
  638.  
  639. Hope they will be useful !!
  640.  
  641.  
  642.  
  643. ---------------------------------------------------------
  644. This was a mail from Dr Unix of MOPS
  645.  
  646. feel free to reply me at : gasmisam@her.tei.gr
  647.                gasmisam@mica.u-strasbg.fr
  648.                cw401@cleveland.freenet.edu
  649.                boudjemi@turing.u-strasbg.fr
  650.  
  651.     And remember : Only Amos makes it possible !!
  652. ---------------------------------------------------------
  653.  
  654. MSG-----------
  655. Date: Mon, 31 May 1993 02:50:48 -0400 (EDT)
  656. From: sfmcnally@bix.com
  657. Subject: RE: 3d routines, A1200.
  658. In-Reply-To: <Pine.3.07.9305301938.B16204-b100000@mensa.cc.deakin.OZ.AU>
  659. To: Scott Southurst <maverick@deakin.edu.au>
  660. Cc: amos-list@access.digex.net
  661. Content-Transfer-Encoding: 7BIT
  662.  
  663. My Amos 1.34 interpreter only works on my 1200 when it's booted in
  664. "enhanced chipset" mode, but compiled amos progs seem to work even with AGA on.
  665. I think there're newer ver's ov Amos tht'll work perfectley on the 1200 though.
  666.  
  667. Seumas
  668.  
  669. MSG-----------
  670. Date: Tue, 01 Jun 1993 00:23:26 -0400 (EDT)
  671. From: sfmcnally@bix.com
  672. Subject: Re: 3d routines, A1200.
  673. In-Reply-To: <199305311021.AA06973@access.digex.net>
  674. To: Michael Cox <mcox@access.digex.net>
  675. Cc: amos-list@access.digex.net
  676. Content-Transfer-Encoding: 7BIT
  677.  
  678. Uh, "LCP"?   "David"?   {O,o}
  679. I'm not sure I know what you're talking about...  ;)
  680.  
  681. But I DO know that TOME 4 is available now, and TOME 4.5 will be comming..
  682.  
  683. Seumas
  684.  
  685. MSG-----------
  686. Date: Mon, 31 May 93 09:47:18 +0300
  687. From: Dr Unix <gasmisam@her.tei.gr>
  688. Organization: TEI-Heraclion, Crete, Greece
  689. To: amos-list@access.digex.net, maverick@deakin.edu.au
  690. Subject: Re:  3d routines, A1200.
  691.  
  692. Hi !!!
  693.  
  694. I heard someone is interrested with some 3d routines  ..
  695. I can send some 3d routines , just email me asking me to send them
  696. those routines support hidden faces,filled  faces,glenz,stencil and source
  697. lighting ... they are in Amos and are quite fast (BTW I use some asm banks)
  698.  
  699. Feel free to ask them :))
  700.  
  701.     Dr Unix
  702.  
  703.  
  704. MSG-----------
  705. Date: Sun, 30 May 1993 21:20:30 +1000 (EST)
  706. From: Scott Southurst <maverick@deakin.edu.au>
  707. Sender: Scott Southurst <maverick@deakin.edu.au>
  708. Reply-To: Scott Southurst <maverick@deakin.edu.au>
  709. Subject: 3d routines, A1200.
  710. To: amos-list@access.digex.net
  711. Mime-Version: 1.0
  712. Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
  713.  
  714. I was wondering if anyone out there had any 3d routines (inc. hidden
  715. surfaces) that could be used in AMOS.  I already own the 3d extension and
  716. have found that its algorithms aren't flexible enough.  If you want say an
  717. aircraft to move and roll etc. in true 3d you haven't a hope.
  718.     Try this.  Face your object 45 to the right and up 45 degrees.  Then
  719. try to get it to roll correctly.  It just can't be done.  It looks like the
  720. screen is being rolled rather than the object.  Perhaps an ex Basic coder
  721. knows some useful code (Michael??).
  722.  
  723. With reguards to the 1200.  Does anyone know how AMOS runs on this
  724. machine.  Are there any compatability problems?? With compiled and
  725. uncompiled??
  726.  
  727. One last thing.... Three cheers to Michael Cox.  This is a great idea. And to
  728. the ftp site idea.....Now if only I could hook up my Amiga to Unix.... 8OP
  729.  
  730. ***************************************************************************
  731. *    __  |\   *   maverick@deakin.edu.oz   (Scott Southurst)              *
  732. *   /  \_| \  *                                                           *
  733. *  /        | *    Student of Aquatic Biology/Programming                 *
  734. *  |        | *                                                           *
  735. *   \./~~\_/  *                                  *
  736. *         v   *                                  *
  737. ***************************************************************************
  738.  
  739.  
  740.  
  741.  
  742.  
  743. MSG-----------
  744. Date: Sun, 30 May 93 16:48:45 EST
  745. From: Aaron Wald <Aaron_Wald@dfbbs.linet.org>
  746. To: amos-list@access.digex.net
  747. Subject: AMOS NTSC CLUB
  748.  
  749. In case anyone cares, AMOS NTSC Club and AMOS NTSC CLUB Pd Library are
  750. dead. I am taking all the disks from the amos ntsc club pd library and
  751. putting them into a new library where you can exchange disks disk for disk
  752. plus postage.. If your interested in that, get back to me. I have about 75
  753. or so european disks as well.
  754.  
  755.  
  756. -- Via DLG Pro v0.995
  757.  
  758. -----------------------------------------------------------------------
  759.  Aaron Wald           |   Usenet - Aaron_Wald@dfbbs.linet.org
  760.  _          _         |  Fidonet - 1:272/80.0   SatanNet - 50:914/2.0
  761.  /he /)ead /-ish BBS  | Amiganet - 40:714/14.0       ICN - 91:914/7.0
  762.                       |   Magnet - 100:900/17.0      ICN - 91:914/600.0
  763.   C.R.A.P. Co-Editor  |  Wildnet - 23:637/5.0
  764. -----------------------------------------------------------------------
  765.  
  766. MSG-----------
  767. Date: 30 May 1993 23:21:05 -0500 (EST)
  768. From: Ehrlinda Ehrnandez <WRKSHP01@grove.iup.edu>
  769. Subject: Amos Pro and A1200
  770. To: amos-list@access.digex.net
  771. Organization: Indiana University of Pennsylvania
  772. Mime-Version: 1.0
  773. Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
  774. Content-Transfer-Encoding: 7BIT
  775.  
  776. I have an A1200 and Amos Pro.  They didn't work together too well, until I
  777. upgraded to version 1.12 of Amos Pro.  Now It works great!  However there isn't
  778. any AGA support yet.  I hear it should be out in a couple of months.
  779.  
  780. MSG-----------
  781. Date: Mon, 31 May 93 23:09:00 -0700
  782. From: "Scott C. Czarcinski" <czar1@manta.nosc.mil>
  783. To: amos-list@access.digex.net
  784. Cc: mcox@access.digex.net
  785. Subject: AMOS Pro Bug???
  786.  
  787. -------
  788. Just a note,
  789.    I am working up an application in AMOS Professional, and I am using
  790. HiRes/Interlaced screens for display. (I usually only have one screen
  791. opened at a time, in the attempt to keep memory usage down.) The problem is 
  792. that every once in awhile if I switch to workbench (Amiga-A) and do
  793. anything and then come back to the application, the screen is unreadable.
  794. (It seems that the characters are crunched, or partally displaced.)
  795.    I know the work-around would be to take control of the system, however I 
  796. would rather not do that. (Last resort type thing.) Has anyone else
  797. encountered this problem, and maybe I just missed a fix???
  798.    (Oh, I guess I should also say that I have an NTSC system.)
  799.    Thanks for the help!!!
  800.             Scott Czarcinski
  801.             <czar1@manta.nosc.mil>
  802.  
  803. -------
  804.  
  805.  
  806. MSG-----------
  807. Date: Mon, 31 May 93 19:22:59 +0200
  808. From: Hakan Ardo <hakan@hera.dit.lth.se>
  809. To: amos-list@access.digex.net
  810. Subject: AMOS TURBO
  811.  
  812.  
  813. Hi!
  814.  
  815. I think I have found a bug in the turbo extetion. I got an A500 with 2.0 rom, 
  816. amos v 1.34a and turbo v 1.75. When I define a scroll with Blit Store left
  817. that covers the entire screen 200 pixels high and scroll it the bottom part
  818. starts flashing(Flash off helps a little).But when I use two Blit Store left
  819. (half the screen in each) it works fine. I diden't find any email addres in
  820. the documentation, so I posted this here. I hope the right man gets this.
  821.  
  822.     Hakan - a confused scroller
  823.  
  824. MSG-----------
  825. Date: Sun, 30 May 1993 15:40:16 +0300 (EET DST)
  826. Mime-Version: 1.0
  827. Content-Type: text/plain; charset=US-ASCII
  828. Content-Transfer-Encoding: 7bit
  829. Content-Length: 1286      
  830.  
  831.  
  832. Peter Fregon writes:
  833. >I have a few problems with Amos which I don't think can be fixed, but I was 
  834. >hoping a work-around may be possible.
  835. >Firstly, can two Amos programs be run at once and still be accessed?
  836. >When Left-Amiga-A is used, you seem to be only able to access one of the Amos 
  837. >programs running.
  838.  
  839. This is one thing, which is bad in AMOS.
  840. But there is atleast one work-around.
  841. I suggest that everybody should write code something like this in every
  842. AMOS program, which will be out only in compiled format:
  843.  
  844. If Key State(SWITCHKEY)
  845.  If Amos Here
  846.     Amos To Back
  847.  Else
  848.     Amos To Front
  849.  End If
  850. End If
  851.  
  852. It would be good ofcourse to make SWITCHKEY user defineable.
  853. This way every user could assign any AMOS program to whatever key they
  854. find practical. Don't leave SWITCHKEY to 0, unless you want to flip using
  855. `-key !
  856.  
  857. With Key Shift command you could also make flipping depend on control keys.
  858. Like this:
  859.  
  860. If Key State(SWITCHKEY) and (SWITCHSIFT)
  861. ...
  862.  
  863. Another thing:
  864. I have uploaded game named "Billiard Games" to aminet. It's in
  865. game/misc. It's version number 0.9, so it isn't "ready" yet (no sounds,
  866. no NTSC support...), but it's playable allright. It's shareware.
  867. If you have questions about it, feel free to mail me.
  868.        _   _
  869. Mikko Makela - mmmakela@cc.helsinki.fi
  870.  
  871.  
  872.  
  873.  
  874. MSG-----------
  875. Date: 29 May 93 15:13:00 EST
  876. From: Ross Knepper <95RKNEPPER@vax.mbhs.edu>
  877. Subject: AmosPro and A4000
  878. To: amos-list <amos-list@access.digex.net>
  879.  
  880. Hello AMOS programmers!
  881.  
  882.  I'm new to this list, so go easy on me if you've had this question :-)
  883. I have an A4000 and AMOS Professional (both are wonderful!).  Has anybody else 
  884. tackled the extensive problems of compatability between the two?  AmosPro won't 
  885. run unless I make a separate startup-sequence which does not include Setpatch.  
  886. This ends up being for the better, though, because it doesn't display right if 
  887. any AGA mode is activated.  Also, anything which uses floating point math locks
  888. up the computer.
  889.  Solutions to some or all of these problems would be much appriciated!!
  890.  
  891. -- Ross Knepper ("Can I have a .sig, too?")
  892.  
  893.  
  894. MSG-----------
  895. Date: Sat, 29 May 1993 11:18:48 -0400 (EDT)
  896. Mime-Version: 1.0
  897. Content-Type: text/plain; charset=US-ASCII
  898. Content-Transfer-Encoding: 7bit
  899. Content-Length: 1138      
  900.  
  901. Okay, so I seem to be the only one that wants to convert AmigaBASIC (AB)
  902. programs to AMOS!  Didn't anyone use AB before they found AMOS??  I wrote
  903. some small utilities with it and I am just now converting them.
  904.  
  905. So, does anyone have any tips on how to convert the AB Window command to the
  906. AMOS WindOpen command?  Since AMOS wants the width and height to be in chracters
  907. I would figure I would do the following:
  908.  
  909. AB: Window id,title$,(x1,y1)-(x2,y2),22,1
  910.  
  911. AMOS:
  912. w = Int((x2 - x1)/8) : h = int((y2 - y1)/8) : Rem Divide by 8 as font is 8x8.
  913. if (W mod 2) > 0
  914.     Inc W
  915. End If
  916. If (H mod 2) > 0
  917.     Inc H
  918. End If
  919. Rem Do the above because Windopen requires W & H to be even.
  920. Windopen id,x1,y1,w,h
  921.  
  922. How about that?  I know that the 22 in AB means you can move it, etc so I will
  923. do a routine for that later, but does the other parts make sense?
  924.  
  925. Mike
  926. The Lone AB->AMOS coder
  927. -- 
  928. Michael Cox                             Work:   mcox@access.digex.com
  929. Amiga Conquers, AMOS Rules!             Play:   aj639@cleveland.freenet.edu
  930. This space intentionally left blank     Fido:   1:109/456.0
  931.         The text above is my own and all that other disclaimer junk
  932.  
  933. MSG-----------
  934. Date: Sun, 30 May 1993 11:01:30 -0400 (EDT)
  935. Mime-Version: 1.0
  936. Content-Type: text/plain; charset=US-ASCII
  937. Content-Transfer-Encoding: 7bit
  938. Content-Length: 540       
  939.  
  940. Would some kind person mail the DATE & TIME procedures that come on the v1.34
  941. update disc?  I have packed those disks up to get ready to move and I do not
  942. feel like remembering which box I put them in.  I know, I know, always comment
  943. your boxes!!
  944.  
  945. Thanks!
  946.  
  947. Mike
  948. -- 
  949. Michael Cox                             Work:   mcox@access.digex.com
  950. Amiga Conquers, AMOS Rules!             Play:   aj639@cleveland.freenet.edu
  951. This space intentionally left blank     Fido:   1:109/456.0
  952.         The text above is my own and all that other disclaimer junk
  953.  
  954. MSG-----------
  955. Date: Sun, 30 May 1993 15:06:58 +0000
  956. Content-Identifier: RE: Date (038) Ti...
  957. From: Jean-Francois Dreyfuss <dreyfusj@issy.cnet.fr>
  958. To: amos-list@access.digex.net
  959. Subject: RE: Date & Time proc.
  960.  
  961. This should answer your question Mike!
  962.  
  963. '----------------------------------
  964. ' How to get TIME and DATE in AMOS 
  965. '----------------------------------  
  966. '
  967. _DATE$ : Print Param$
  968. _TIME$ : Print Param$
  969. '
  970. Procedure _DATE$
  971.    '
  972.    ' Call DOS DateStamp function
  973.    T$=Space$(12)
  974.    Dreg(1)=Varptr(T$)
  975.    RIEN=Doscall(-192)
  976.    NJ=Leek(Varptr(T$))
  977.    '
  978.    ' Find this year's first day 
  979.    A=1978 : JOUR=7
  980.    Do 
  981.       BIS=0 : If(A and 3)=0 : BIS=1 : End If 
  982.       Exit If NJ-365-BIS<0
  983.       Add JOUR,1+BIS : If JOUR>7 : Add JOUR,-7 : End If 
  984.       Add NJ,-365-BIS
  985.       Inc A
  986.    Loop 
  987.    '
  988.    ' Find month 
  989.    M=1
  990.    Do 
  991.       Read N
  992.       Exit If NJ-N<0
  993.       Add NJ,-N : Inc M
  994.    Loop 
  995.    Inc NJ
  996.    '
  997.    ' Create the string
  998.    J$=Mid$(Str$(NJ),2) : If Len(J$)<2 : J$="0"+J$ : End If 
  999.    M$=Mid$(Str$(M),2) : If Len(M$)<2 : M$="0"+M$ : End If 
  1000.    A$=Mid$(Str$(A),2)
  1001.    DATE$=J$+"-"+M$+"-"+A$
  1002.    '
  1003.    ' Length of each month 
  1004.    Data 31,28+BIS,31,30,31,30,31,31,30,31,30,31
  1005.    '
  1006. End Proc[DATE$]
  1007. Procedure _TIME$
  1008.    '
  1009.    ' Call DOS function
  1010.    T$=Space$(12)
  1011.    Dreg(1)=Varptr(T$)
  1012.    RIEN=Doscall(-192)
  1013.    MN=Leek(Varptr(T$)+4)
  1014.    SEC=Leek(Varptr(T$)+8)
  1015.    '
  1016.    ' Minutes calculation
  1017.    H=MN/60 : H$=Mid$(Str$(H),2) : If Len(H$)<2 : H$="0"+H$ : End If 
  1018.    M=MN mod 60 : M$=Mid$(Str$(M),2) : If Len(M$)<2 : M$="0"+M$ : End If 
  1019.    '
  1020.    ' Seconds calculation  
  1021.    S=SEC/50 : S$=Mid$(Str$(S),2) : If Len(S$)<2 : S$="0"+S$ : End If 
  1022.    '
  1023.    ' Final string 
  1024.    TIME$=H$+":"+M$+":"+S$
  1025.    '
  1026. End Proc[TIME$]
  1027.  
  1028. MSG-----------
  1029. Date: Sat, 29 May 93 20:01:51 PDT
  1030. Mailer: Elm [revision: 70.85]
  1031.  
  1032.  
  1033.  
  1034. While we're on the subject of interrupts, I just ran into a problem.  Does
  1035. anyone know if you're allowed to use more than one Every n Proc?  I'm trying
  1036. to use two, and the program only executes the last one declared.  I couldn't
  1037. find anything in the manual about it, so...
  1038.  
  1039. Tnx
  1040.  Rich Helvey           
  1041.  
  1042.  
  1043. MSG-----------
  1044. Date: Sat, 29 May 93 23:54:46 -0500
  1045. From: Laura A Sjoquist-1 <sjoq0002@student.tc.umn.edu>
  1046. To: amos-list@access.digex.net, urich@mcl.mcl.ucsb.edu
  1047. Subject: Re: more interrupt ?'s
  1048.  
  1049. I was wondering the same thing as well, but assumed it wasn't possible. It'd be great if there was a way though... :-)
  1050. .s
  1051.  
  1052. MSG-----------
  1053. Date: Sun, 30 May 1993 18:52:45 +1000 (EST)
  1054. Mime-Version: 1.0
  1055. Content-Type: text/plain; charset=US-ASCII
  1056. Content-Transfer-Encoding: 7bit
  1057. Content-Length: 1077      
  1058.  
  1059.  
  1060. wrt. the problem of multiple "Every N Proc" calls:
  1061.  
  1062. Why not just have one call to Every N Proc, using the greatest common
  1063. divisor of the counts you really want.  Increment a counter in the
  1064. procedure, and call the procedures you want when it gets to the appropriate
  1065. value (that is, the count divided by the greatest common divisor).
  1066.  
  1067. eg.  you want to use    Every 6 Proc FIRST_PROC
  1068.             Every 9 Proc SECOND_PROC
  1069.  
  1070. Greatest common divisor is 3, so use
  1071.             Every 3 Proc TIMER_PROC
  1072.  
  1073. 6/3 = 2, you want to call FIRST_PROC every 2nd interrupt
  1074. 9/3 = 3, you want to call SECOND_PROC every 3rd interrupt
  1075.  
  1076. So use:
  1077.  
  1078. Procedure TIMER_PROC
  1079.    Shared TIMER_VALUE
  1080.    Inc TIMER_VALUE
  1081.    If (TIMER_VALUE mod 2) = 0 Then FIRST_PROC
  1082.    If (TIMER_VALUE mod 3) = 0 Then SECOND_PROC
  1083. End Proc
  1084.  
  1085. Hope this is of use...
  1086.  
  1087. Richard
  1088.  
  1089. PS. 3D demo will be uploaded to an FTP site soon... please hang loose!
  1090.  
  1091. ==========================  Generating: .signature
  1092.    Richard Ling             - colour analysis... complete
  1093.  u9147063@cs.uow.edu.au     - clipping... complete
  1094. ==========================  - rendering... 37.6%
  1095.  
  1096. MSG-----------
  1097. Date: Sun, 30 May 1993 03:51:17 -0400 (EDT)
  1098. From: sfmcnally@bix.com
  1099. Subject: RE: Turbo.lib for AMOS Pro?
  1100. In-Reply-To: <199305292317.AA00750@access.digex.net>
  1101. To: Andrew Church <95ACHURCH@vax.mbhs.edu>
  1102. Cc: amos-list@access.digex.net
  1103. Content-Transfer-Encoding: 7BIT
  1104.  
  1105. BTW, does anyone know what extention number Creator Turbo uses??
  1106.  
  1107. Seumas
  1108.  
  1109. MSG-----------
  1110. Date: Sun, 30 May 1993 06:33:37 -0400 (EDT)
  1111. In-Reply-To: <199305292317.AA00750@access.digex.net> from "Andrew Church" at May 29, 93 06:57:00 pm
  1112. Mime-Version: 1.0
  1113. Content-Type: text/plain; charset=US-ASCII
  1114. Content-Transfer-Encoding: 7bit
  1115. Content-Length: 588       
  1116.  
  1117. >  Whoever it is that's writing the Turbo library, will it be available
  1118. >for AMOS Pro anytime soon?
  1119. Unfortunately, Manuel Andre has no access to the list but he has assured me
  1120. that it WILL be converted to Pro format very soon.  He is settling in to a new
  1121. house so he has not had much time to work on it.
  1122.  
  1123. Mike
  1124. -- 
  1125. Michael Cox                             Work:   mcox@access.digex.com
  1126. Amiga Conquers, AMOS Rules!             Play:   aj639@cleveland.freenet.edu
  1127. This space intentionally left blank     Fido:   1:109/456.0
  1128.         The text above is my own and all that other disclaimer junk
  1129.  
  1130. MSG-----------
  1131. Date: Tue, 1 Jun 93 18:05:01 +0300
  1132. From: Dr Unix <gasmisam@her.tei.gr>
  1133. Organization: TEI-Heraclion, Crete, Greece
  1134. To: amos-list@access.digex.net
  1135. Subject: 3d rules 
  1136.  
  1137. Yo Dudes !!
  1138.  
  1139. the 3d routines I will send to people asked me to
  1140. will be an lha archive uuencoded .
  1141.    
  1142. just let me time to comment them !!
  1143. coz they will not be useful if i dont comment them :))
  1144.  
  1145. so just be patient ....
  1146.  
  1147.  
  1148.  
  1149. ---------------------------------------------------------
  1150. This was a mail from Dr Unix of MOPS
  1151.  
  1152. feel free to reply me at : gasmisam@her.tei.gr
  1153.                gasmisam@mica.u-strasbg.fr
  1154.                cw401@cleveland.freenet.edu
  1155.                boudjemi@turing.u-strasbg.fr
  1156.  
  1157.     And remember : Only Amos makes it possible !!
  1158. ---------------------------------------------------------
  1159.  
  1160.